home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-scilab.sh
Linux/UNIX/POSIX Shell Script  |  1999-09-16  |  242b  |  20 lines

  1. #!/bin/sh
  2.  
  3. for jj in 1 2 3 4 5 6 7 8
  4. do 
  5.     for f in Man-Part1/cat$jj/*
  6.     do
  7.         expand $f > totototo
  8.         mv -f totototo $f
  9.     done 
  10. done
  11.  
  12. for jj in 1 2 3 4 5
  13. do 
  14.     for f in Man-Part2/cat$jj/*
  15.     do
  16.         expand $f > totototo
  17.         mv -f totototo $f
  18.     done 
  19. done
  20.